home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 / Programming Windows 95.iso / code / CHAP10 / NOPOPUPS.MAK < prev    next >
Text File  |  1995-12-31  |  360b  |  14 lines

  1. #------------------------
  2. # NOPOPUPS.MAK make file
  3. #------------------------
  4.  
  5. nopopups.exe : nopopups.obj nopopups.res
  6.      $(LINKER) $(GUIFLAGS) -OUT:nopopups.exe nopopups.obj \
  7.      nopopups.res $(GUILIBS)
  8.  
  9. nopopups.obj : nopopups.c nopopups.h
  10.      $(CC) $(CFLAGS) nopopups.c
  11.  
  12. nopopups.res : nopopups.rc nopopups.h
  13.      $(RC) $(RCVARS) nopopups.rc
  14.